type net/http.http2responseWriterState

12 uses

	net/http (current package)
		h2_bundle.go#L4124: 		rws := &http2responseWriterState{}
		h2_bundle.go#L6438: 	rws := http2responseWriterStatePool.Get().(*http2responseWriterState)
		h2_bundle.go#L6440: 	*rws = http2responseWriterState{} // zero all the fields
		h2_bundle.go#L6686: 	rws *http2responseWriterState
		h2_bundle.go#L6696: type http2responseWriterState struct {
		h2_bundle.go#L6721: type http2chunkWriter struct{ rws *http2responseWriterState }
		h2_bundle.go#L6733: func (rws *http2responseWriterState) hasTrailers() bool { return len(rws.trailers) > 0 }
		h2_bundle.go#L6735: func (rws *http2responseWriterState) hasNonemptyTrailers() bool {
		h2_bundle.go#L6747: func (rws *http2responseWriterState) declareTrailer(k string) {
		h2_bundle.go#L6765: func (rws *http2responseWriterState) writeChunk(p []byte) (n int, err error) {
		h2_bundle.go#L6904: func (rws *http2responseWriterState) promoteUndeclaredTrailers() {
		h2_bundle.go#L7063: func (rws *http2responseWriterState) writeHeader(code int) {